c8c3603b74c3739f88e4e48d09f8b2fd40577347,h2o-algos/src/main/java/hex/tree/DTree.java,DecidedNode,ns,#Chunk#number#,496
Before Change
}
public int ns( Chunk chks[], int row ) {
float d = (float)chks[_split._col].atd(row);
int bin;
// Note that during *scoring* (as opposed to training), we can be exposed
// to data which is outside the bin limits.
After Change
}
public int ns( Chunk chks[], int row ) {
double d = chks[_split._col].atd(row);
int bin;
// Note that during *scoring* (as opposed to training), we can be exposed
// to data which is outside the bin limits.